home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / gadgets / scroller.m < prev    next >
Encoding:
Text File  |  2001-10-28  |  1.6 KB  |  41 lines

  1. /*
  2. **  $VER: scroller.h 44.1 (19.10.1999)
  3. **  Includes Release 44.1
  4. **
  5. **  Definitions for the scroller.gadget BOOPSI class
  6. **
  7. **  (C) Copyright 1987-1999 Amiga, Inc.
  8. **      All Rights Reserved
  9. */
  10. /*****************************************************************************/
  11. //MODULE 'reaction/reaction','intuition/gadgetclass'
  12. /*****************************************************************************/
  13. /* Additional attributes defined by the scroller.gadget class
  14.  */
  15. #define SCROLLER_Dummy      (REACTION_Dummy+$0005000)
  16. #define SCROLLER_Top      (SCROLLER_Dummy+1)
  17. /* (WORD) scroller Top value (Defaults to 0). */
  18. #define SCROLLER_Visible    (SCROLLER_Dummy+2)
  19. /* (WORD) visible part of total. */
  20. #define SCROLLER_Total      (SCROLLER_Dummy+3)
  21. /* (WORD) total scroller size. */
  22. #define SCROLLER_Orientation  (SCROLLER_Dummy+4)
  23. /* (WORD) Vertical or Horizontal mode. */
  24. #define SCROLLER_Arrows       (SCROLLER_Dummy+5)
  25. /* (BOOL) Render arrows. */
  26. #define SCROLLER_Stretch    (SCROLLER_Dummy+6)
  27. /* (BOOL) AutoExpand/Stretch Total. */
  28. #define SCROLLER_ArrowDelta     (SCROLLER_Dummy+7)
  29. /* (WORD) Change arrow click makes. */
  30. #define SCROLLER_SignalTask     (SCROLLER_Dummy+10)
  31. /* (struct Task *) Signal this Task while scroller is active */
  32. #define SCROLLER_SignalTaskBit  (SCROLLER_Dummy+11)
  33. /* (ULONG) Signal with this Bit. */
  34. /*****************************************************************************/
  35. /* SCROLLER_Orientation Modes
  36.  */
  37. #define SORIENT_HORIZ   FREEHORIZ
  38. #define SORIENT_VERT  FREEVERT
  39. #define SCROLLER_HORIZONTAL   SORIENT_HORIZ
  40. #define SCROLLER_VERTICAL   SORIENT_VERT
  41.